home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2008 #18 / KCD200818.ISO / Euro Truck / ets_1_00_setup.exe / base.scs / effect / generic / dry_vcol_tex / nv2x_fog.nvrc < prev    next >
Text File  |  2008-07-25  |  314b  |  31 lines

  1. # dry.vcol.tex.fog
  2.  
  3. #var sampler2D texture : texunit 0
  4.  
  5. !!TS1.0
  6.  
  7. texture_2d();
  8.  
  9. !!RC1.0
  10.  
  11. {
  12.     rgb
  13.     {
  14.         col0.rgb = col0.rgb * tex0.rgb;
  15.     }
  16.     alpha
  17.     {
  18.         col0.a = col0.a * tex0.a;
  19.     }
  20. }
  21.  
  22. # fog_exp2(mix.rgb, fog_color, ...)
  23.  
  24. out.rgb = lerp(fog.a, col0.rgb, fog);
  25.  
  26. # return half4(fogged, opacity)
  27.  
  28. out.a = col0.a;
  29.  
  30. # eof #
  31.